*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto' , sans-serif;
}

.container{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgb(233, 221, 207,0.7),rgba(116, 50, 53, 0.7)),url(images/background.jpg);
    background-position: center;
    background-size: cover;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
}

.navbar{
    height: auto;
    display: flex;
    align-items: center;
}

.logo{
    width: 50px;
    cursor: pointer;
}

nav{
    flex: 1;
    text-align: right;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 80px;   
}
nav ul li a{
    text-decoration: none;
    color: #ffffff;
    font-size: 17px;
}

nav ul li a button{
    display: inline-block;
    width: 180px;
    color: #000;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    padding: 12px 0;
    background: #fff;
    border: 0;
    border-radius: 20px;
    outline: none;
    margin-top: 50 px;
    transition: transform 0.5s;
    border: none;
    border-radius: 20px;
    box-shadow: 0 5px #999;
}
  
button:active {
    background-color: #a07f88;
    box-shadow: 0 4px #666;
    transform: translateY(4px);
  }
nav ul li a button:hover{
    background-color: #a07f88; 
    color: white;
}
.row{
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
}

.col{
    flex-basis: 50%;
    height: auto;
    width: auto;
}

h1{
    color: #fff;
    font-size: 40px;
    height: auto;
}

p{
    color: linear-gradient(rgba(255, 255, 255, 0.7),rgba(116, 50, 53, 0.7));
    font-size: 18px;
    line-height: auto;
    margin-bottom: 20px;
    height: auto;
}

.timeline{
    position: relative;
    margin: 50px auto;
    padding: 40px 0;
    width: 1000px;
    box-sizing: border-box;
}
.timeline:before{
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background :#c5c5c5;
}
.timeline ul{
    margin: 0;
    padding: 0;
}
.timeline ul li{
    line-height: normal;
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}
.timeline ul li:nth-child(odd){
    float: left;
    text-align: right ;
    clear: both;
}
.timeline ul li:nth-child(even){
    float: right;
    text-align: left;
    clear: both;
}
.content{
    padding-bottom: 20px;
}
.timeline ul li:nth-child(odd):before{
    content: '';
    position: absolute;
    top: 24px ;
    right: -6px;
    width: 10px;
    height: 10px;
    background: rgb(233, 33, 99,1);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgb(233, 33, 99,0.2);
}
.timeline ul li:nth-child(even):before{
    content: '';
    position: absolute;
    top: 24px ;
    left: -6px;
    width: 10px;
    height: 10px;
    background: rgb(233, 33, 99,1);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgb(233, 33, 99,0.2);
}
.timeline ul li h3 {
    margin: 0;
    padding: 0;
    font-weight: 600;
}
.timeline ul li p {
    margin: 10px 0 0;
    padding: 0;
    width: auto;
    height: auto;
}
.timeline ul li .time{
    margin: 0;
    padding: 0;
    font-size: 14px;
}
.timeline ul li:nth-child(odd) .time{
    position: absolute;
    top: 12px;
    right: -165;
    margin: 0;
    padding: 8px 16px;
    background: rgb(233, 33, 99,1);
    color: #fff;    
    border-radius: 18px;
    box-shadow: 0 0 0 3px rgb(233, 33, 99,0.3);
}
.timeline ul li:nth-child(even) .time{
    position: absolute;
    top: 12px;
    left: -165;
    margin: 0;
    padding: 8px 16px;
    background: rgb(233, 33, 99,1);
    color: #fff;    
    border-radius: 18px;
    box-shadow: 0 0 0 3px rgb(233, 33, 99,0.3);
}
